home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Programming / Complete Applications / Othello C Source / Makefile < prev    next >
Encoding:
Makefile  |  1985-09-13  |  945 b   |  57 lines  |  [TEXT/ttxt]

  1. INCLUDE =    /usr/stanford/include
  2.  
  3. SYSHFILES =    $(INCLUDE)/mac/quickdraw.h $(INCLUDE)/mac/osintf.h    \
  4.         $(INCLUDE)/mac/toolintf.h
  5.  
  6. HFILES =    othello.h
  7.  
  8. CFILES =    othello.c menu.c        \
  9.         doflips.c domove.c        \
  10.         drawboard.c            \
  11.         findmoves.c            \
  12.         getmove.c            \
  13.         info.c initboard.c        \
  14.         move.c newgame.c        \
  15.         placestone.c            \
  16.         undo.c
  17.  
  18. SRCS =        othello.rc $(HFILES) $(CFILES)
  19.  
  20. OFILES =    othello.b menu.b        \
  21.         doflips.b domove.b        \
  22.         drawboard.b            \
  23.         findmoves.b            \
  24.         getmove.b            \
  25.         info.b initboard.b        \
  26.         move.b newgame.b        \
  27.         placestone.b            \
  28.         undo.b
  29.  
  30. .SUFFIXES: .rsrc .b
  31.  
  32. .c.b:
  33.     cc68 -c -O $<
  34.  
  35. Othello.rsrc:    b.out othello.rc
  36.     rmaker othello.rc
  37.  
  38. b.out:    $(OFILES)
  39.     cc68 -z -m -O $(OFILES)
  40.  
  41. $(OFILES):    $(SYSHFILES) $(HFILES)
  42.  
  43. dl:    Othello.rsrc
  44.     macput -r Othello
  45.  
  46. othello.shar:    AboutOthello Makefile $(SRCS)
  47.     shar AboutOthello Makefile $(SRCS) >othello.shar
  48.  
  49. pr:    $(SRCS)
  50.     pr $(SRCS)
  51.  
  52. spr:    $(SRCS)
  53.     pr -l83 $(SRCS) | spr
  54.  
  55. rpr:    $(SRCS)
  56.     rpr -numb $(SRCS)
  57.